@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@3;300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
}
/*---------------------------------------navbar------------------------------*/
.numbertext img{
    width: 100%;
}
.header{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.3rem 10%;
    display: flex;
    justify-content: space-between ;
    align-items: center;
    z-index: 100;
    border: 5px solid white;
}
.header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: antiquewhite;
    backdrop-filter: blur(50px);
    z-index: -1;
}
.navbar a{
    font-size: 1.15rem;
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 700;
    margin-left:2.5rem ;
}
.navbar a button{
    padding: 5px;
    border-radius: 30px;
    width: 130px;
    background-color: rgb(70, 234, 70);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
}
.navbar a button:hover{
    transform: scale(1.2) translateY(5px);
    transition: .3s;
}
#check{
    display: none;
}
.icons{
    font-size: 2.8rem;
    right:5%;
    color: white;
    font-size: 2.8rem;
    cursor: pointer;
    display: none;
}
.logo img{
    margin-top: 5px;
    width: 350px;
}

/*----------------------------------------------------------Media Queries-------------------------------------------------*/
@media(max-width:1180px){
    .logo img{
        width: 280px;
    }
    .navbar a{
        font-size: 1.15rem;
    }

}
@media(max-width:769px){
    .logo img{
        width: 250px;
    }
}
@media(max-width:1178px){
    .navbar a{
        margin-left: 2rem;
    }
}
@media(max-width:1152px) and (min-width:1108px){
    .header{
        padding: 0.5rem 5%;
    }
 }

 @media(max-width:1108px) and (min-width:769px) {
    .header{
        padding:0.3rem 1% ;
    }
   .logo img{
        width: 300px;
   }
   .navbar a{
    padding: 5px;
   }
 }
 @media(max-width:962px){
    .navbar a{
        margin-left: 1.5rem;
    }
 }
 @media(max-width:962px){
    .icons{
        display: inline-flex;
    }
    #check:checked~.icons #menu-icon {
        display: none;
    }
    .icons #close-icon{
        display: none;
    }
    #check:checked~.icons #close-icon {
        display: block;
    }
    .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(0,0,0,.1); 
        backdrop-filter: blur(50px);
        box-shadow: 0.5rem 1rem rgba(0,0,0,.1);
        overflow: hidden;
        transition: .3s ease;
    }
    #check:checked~.navbar {
        height: 17.7rem;
    }
    .navbar a{
        display: block;
        font-size: 1.1rem;
        margin:1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: .3s ease;
    }
    #check:checked~.navbar a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(.15s *var(--i));
    }
 }
 @media(max-width:600px){
    .logo img{
        width: 100px;
    }
    .icons{
        display: inline-flex;
    }
    #check:checked~.icons #menu-icon {
        display: none;
    }
    .icons #close-icon{
        display: none;
    }
    #check:checked~.icons #close-icon {
        display: block;
    }
    .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(0,0,0,.1); 
        backdrop-filter: blur(50px);
        box-shadow: 0.5rem 1rem rgba(0,0,0,.1);
        overflow: hidden;
        transition: .3s ease;
    }
    #check:checked~.navbar {
        height: 17.7rem;
    }
    .navbar a{
        display: block;
        font-size: 1.1rem;
        margin:1.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: .3s ease;
    }
    #check:checked~.navbar a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(.15s *var(--i));
    }
 }

 
/*------------------------------------------------------navbar end------------------------------------------------------*/
/*----------------------------------------------Contact Us------------------------------------------------*/
.contact-card{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2% auto;
    position:relative;
    top: -100px;
}
.contact-cardcontainer{
    width: 30%;
    height:22vw;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    margin-left: 5%;
    border-radius: 15px;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .3s;
}
.contact-cardcontainer:hover{
    transform: scale(1.015);
}
.contact-imagecontainer img{
    width: 30%;
    margin-left: 32%;
}
.contact-text{
    text-align: center;
    line-height: 30px;
}
.contact-text h2{
    font-size: 160%;
}
/*---------------button--------------*/

.contact-text button{
    padding: 10px;
    width: 80%;
    border: 2px solid rgb(0, 162, 255) ;
    color: rgb(0, 162, 255) ;
    font-size: large;
    border-radius:15px;
    cursor: pointer;
    transition: .4s;
    position: relative;
    top: 30%;
}
.contact-text button:hover{
    transform: scale(1.04);
    background-color: rgb(0, 162, 255);
    color: #fff;
    border: none;
}
/*---------------button End--------------*/
/*---------------------------------------Media Queries---------------------------------------------------*/
@media(max-width:1180px){
    .contact-cardcontainer{
        width: 50%;
        height:350px;
        position: relative;
        top:30px ;
        margin-left: 40px;
    }
}
@media(max-width:900px){
    .contact-text h2{
        font-size: 100%;
    }
    .contact-text button{
        padding: 5px;
        width: 40%;
        font-size:1vw;
        position: relative;
        top: 5%;
    }
}
@media(max-width:812px){
    .contact-card{
        display: flex;
        flex-direction: column;
    }
    .contact-cardcontainer{
        width: 50%;
        height:25vw;
        margin-top: 5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media(max-width:751px){
    .contact-cardcontainer{
        width: 50%;
        height:27vw;
        position: relative;
        top:10px ;
    }
}
@media(max-width:637px){
    .contact-cardcontainer{
        position: relative;
        top:30px ;
    }
}
@media(max-width:569px){
    .contact-imagecontainer img{
        width: 20%;
        margin-left: 37%;
    }
    .contact-cardcontainer{
        position: relative;
        top:40px ;
    }
    .contact-text button{
        padding: 5px;
        width: 40%;
        font-size:1.5vw;
        position: relative;
        top: 5%;
    }
}
@media(max-width:550x){
    .contact-imagecontainer img{
        width: 20%;
        margin-left: 32%;
    }
    .contact-cardcontainer{
        width: 70%;
        height:700px;
        position: relative;
        top:50px ;
    }
}
@media(max-width:430px){
    .contact-cardcontainer{
        width: 70%;
        height:170px;
        position: relative;
        top:50px;
        margin-left: 20px;
    }
    .contact-text button{
        width: 50%;
        padding: 5px;
        font-size:2vw;
        position: relative;
        top: 5%;
    }
}
@media(max-width:1366px){
    .contact-cardcontainer{
        width: 50%;
        height:380px;
        position: relative;
        top:50px;
        margin-left: 20px;
    }
}
@media(max-width:820px){
    .contact-text button{
        width: 60%;
        padding: 5px;
        font-size:2vw;
        position: relative;
        top: 5%;
    }
    .contact-cardcontainer{
        width: 70%;
        height:280px;
        position: relative;
        top:50px;
        margin-left: 20px;
    }
}
@media(max-width:280px){
    .contact-cardcontainer{
        width: 85%;
        height:180px;
        position: relative;
        top:65px;
        margin-left: 4px;
    }
    .contact-text button{
        padding: 5px;
        font-size:4vw;
        position: relative;
        top: 5%;
    }
}
/*----------------------------------------------Contact Us------------------------------------------------*/
/*-----------------------------------------------------Best Seller-----------------------------------------------------*/

.best-seller{
    text-align: center;
    margin-top: 50px;
}
.best-seller h1{
    margin-top: 20px;
    text-align: center;
}
.best-seller h1{
    font-family: lucida handwriting;
}


/*-------------------------------------------------------Media Queries--------------------------------------------------*/

@media(max-width:969px){
    .best-seller h1{
        font-size:  30px;
        margin-top: -30px;
    }
    .best-seller img{
        width: 70%;
        margin-top: -20px;
    }
}
@media(max-width:591px){
    .best-seller h1{
        font-size:15px ;
        margin-top: -29px;
    }
    .best-seller img{
        width: 85%;
        margin-top: -20px;
    }
}

/*-----------------------------------------------------Best Seller End-----------------------------------------------------*/

/*--------------------------------------------------------
 slider--------------------------------------------------*/
a{
    text-decoration: none;
}
.product-slider{
    background-color: #f5f5f7;
    padding: 0px 20px;
    box-sizing: border-box;
}
.product-box{
    display: flex;
    flex-direction: column;
    width: 300px;
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 20px;
    border: 3px solid crimson;
    margin: 15px;
    padding: 25px;
    box-sizing: border-box;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    transition: all ease 0.4s;
}
.product-box:hover{
    box-shadow: 0 2em 3em rgba(0, 200, 0, 0.5);
    transform: scale(1.03);
    transition: all ease 0.4s;
}
.product-box strong{
    color: #29292c;
    font-size: 1.75rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    margin-top: 24px;
}
.product-box img{
    width: 250px;
    height: 300px;
    display: flex;
    object-fit: contain;
    object-position: center;
    margin: 5px auto;
    transition: .4s;
    overflow: hidden;
}
.product-box img:hover{
    transform: scale(1.06);
}
.buy-price{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0px 0px;
}
.buy-price p{
    color: #6e6e73;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    max-width: 250px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.buy-price .buy-btn{
    color: #25d366;
    background-color: #ffffff;
    border: 2px solid #25d366;
    text-decoration: none;
    width: 100px;
    height: 40px;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    font-family: Arial, Helvetica, sans-serif;
}
.buy-price .buy-btn:hover{
    background-color: #25d366;
    color: #ffffff;
    transition: .3s;
}
.lSPager{
    display: none;
}
.lSAction > a{
    background-color: #00000033;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-image: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lSAction > .lSPrev::after{
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}
.lSAction > .lSNext::after{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

/*-----------------------------Media Queries----------------------*/

@media(max-width:600px){
    .slider-heading h3{
        font: 21px;
    }
    .product-box{
        width: 220px;
        margin: 10px;
        box-sizing: border-box;
    }
    .product-box img{
        width: 160px;
        height: 190px;
    }
    .product-box strong{
        font-size: 21px;
    }
    .lSAction > a{
        display: none;
    }
    .product-slider{
        padding: 0px;
    }
}
@media(max-width:650px){
    
}
@media(max-width:400px){
    .product-box{
        width: 220px;
    }
    .buy-price h2{
        font-size: 1.6rem;
    }
    .buy-btn{
        font-size: 0.8rem;
    }
}
@media(max-width:324px){
    .product-box{
        width: 190px;
    }
    .product-box img{
        width: 140px;
        height: 165px;
    }
    .buy-price{
        flex-direction: column;
        margin: -15px;
    }
    .buy-price .buy-btn{
        width: 85%;
        height: 35px;
    }
}

/*---------------------------------------Product slider end------------------------------*/

/*-----------------------------------------------------------------------Icon----------------------------------------------------------------*/
.arunartist{ background-color: #1e1c2a;
text-align:center;
color:white;
}
.arunartist h1{font-size:40px;
font-family:cursive;
}
.artist-container{
    border-radius: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px 50px;
    padding: 100px 50px;
    margin-bottom: 100px;
   
}
.artist-container .card{
    position: relative;
    display:flex;
    justify-content: center;
    align-items: flex-start;
    width: 350px;
    height: 300px;
    background:#fff;
    border-radius: 20px;
    box-shadow: 0px 35px 15px(rgba(255, 255, 255, 0.15));
    transition: 0.5s;
}
.artist-container .card:hover{
    height: 400px;
}
.artist-container .card .imgbx{
    position: absolute;
    top: 20px;
    width: 300px;
    height: 220px;
    background: #000;
    border-radius: 12px;
    transition: 0.5s;
    overflow: hidden;
}
.artist-container .card:hover .imgbx{
    width: 220px;
    top: -100px;
    scale: 0.75;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-radius: 200px;
}
.artist-container .card .imgbx img{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.artist-container .card .content{
    position: absolute;
    top: 240px;
    width: 100%;
    height: 33px;
    padding: 0 30px;
    overflow: hidden;
    text-align: center;
    transition: 0.5s;
 
}
.artist-container .card .content h2{
    font-family: lucida handwriitng;
}
.artist-container .card:hover .content{
    top: 90px;
    height: 450px;

}
/* -----------------------------------------------------------------media----------------------------------------------------------------- */

@media screen and (max-width:390px){
    
     .artist-container .card .imgbx{
        position: absolute;
        top: 20px;
        width: 220px;
        height: 220px;
        background: #000;
        border-radius: 12px;
        transition: 0.5s;
        overflow: hidden;
    }
    .artist-container .card .content {
        font-size: 15px;
    }
    .artist-container .card:hover .content{
        top: 90px;
        height: 450px;
    
    }
    .artist-container .card:hover{
        height: 460px;
    }
    .artist-container .card .content{
        position: absolute;
        top: 270px;
        width: 100%;
        height: 33px;
        padding: 0 30px;
        overflow: hidden;
        text-align: center;
        transition: 0.5s;
     
    }
    
}

@media screen and (max-width:280px){
    
    .artist-container .card .imgbx{
       position: absolute;
       top: 20px;
       width: 170px;
       height: 170px;
       background: #000;
       border-radius: 12px;
       transition: 0.5s;
       overflow: hidden;
   }
   .artist-container .card .content {
       font-size: 15px;
   }
   .artist-container .card:hover .content{
       top: 60px;
       height: 450px;
   }
   .artist-container .card:hover .imgbx{
    width: 170px;
    top: -100px;
    scale: 0.75;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-radius: 200px;
}
   
   .artist-container .card .content{
    position: absolute;
    top: 220px;
    width: 100%;
    height: 33px;
    padding: 0 30px;
    overflow: hidden;
    text-align: center;
    transition: 0.5s;
 
}
   .artist-container .card{
    position: relative;
    display:flex;
    justify-content: center;
    align-items: flex-start;
    width: 350px;
    height: 250px;
    background:#fff;
    border-radius: 20px;
    box-shadow: 0px 35px 15px(rgba(255, 255, 255, 0.15));
    transition: 0.5s;
}
.artist-container .card .content p {
    font-size: 12px;
}
}




/*-----------------------------------------------------------------------services---------------------------------------------------------------*/

.services{
    background-color: #d0cfd8;
}
.service-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px, auto));
}
.s-box{
    text-align: center;
    padding: 20px 30px;
}
.s-box img{
    width: 90px;
}
.s-box h3{
    margin: 4px 0 10px;
    font-size: 1.2rem;
}
.s-box p{
    line-height: 1.7rem;
}

/*-----------------------------------------------------------------------services end---------------------------------------------------------------*/

 /*----------------------------------------------Footer ------------------------------------------------*/

footer{
    width: 100%;
    position: relative;
    bottom: 0;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    font-family: 'Poppins',sans-serif;
    padding: 100px 0 30px;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
    font-size: 13px;
    line-height: 20px;
}
.footer-row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.footer-col{
    flex-basis: 25%;
    padding: 10px;
}
.footer-col:nth-child(2), .footer-col:nth-child(3){
    flex-basis: 15%;
}
.footer-logo{
    width: 100px;
    margin-bottom: 30px;
}
.footer-col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    font-weight: 700;
}
.email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}
.footer-col ul li{
    list-style: none;
    margin-bottom: 12px;
}
.footer-col ul li a{
    text-decoration: none;
    color: #fff;
}
.icons-container{
    display: flex;
    justify-content: space-around;
}
.social-icon i{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: black;
    background: white;
    margin-right: 15px;
    cursor: pointer;
}
hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}
.copyright{
    text-align: center;
}
.footer-underline{
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}
.footer-underline span{
    width: 15px;
    height: 100%;
    background: white;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
    
}
.footer-col ul li:hover{
    color: #fff;
    transform: translateX(-15px);
    transition: .4s;
    cursor: pointer;
}
.footer-col a p{
    text-decoration: none;
    color: white;
}
.footer-col p:hover{
    color: #fff;
    transform: translateX(-15px);
    transition: .4s;
    cursor: pointer;
}
.social-icon i:hover{
    color: white;
    transform: translateY(-5px);
    transition: .4s;
}
.social-icon #facebook i:hover{
    background-color: blue;
}
.social-icon #instagram i:hover{
    background: linear-gradient(to top,#f9ce34, #ee2a7b, #6228d7);
}
.social-icon #whatsapp i:hover{
    background-color: #25D366;
}
.social-icon #youtube i:hover{
    background-color: red;
}
@keyframes moving{
    0%{
        left: -20px;
    }
    100%{
        left: 100%;
    }
}
@media(max-width:700px){
    footer{
        bottom: unset;
    }
    .footer-col{
        flex-basis: 100%;
    }
    .footer-col:nth-child(2), .footer-col:nth-child(3){
        flex-basis: 100%;
    }
}
/*----------------------------------------------Footer End------------------------------------------------*/

/*----------------------------------------------Sign Up End-------------------------------------------------*/

#show-login{
    transform: translate(-50%,-50%);
}
.signup-popup{
    position: absolute;
    top: -150%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%,-50%) scale(1.25);
    width: 450px;
    padding: 20px 30px;
    background:/*url('banner1.png')*/ #fff;
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    transition: top 0ms ease-in-out 200ms,
                opacity 200ms ease-in-out 0ms,
                transform 20ms ease-in-out 0ms;
    z-index: 100;
}
.signup-popup.active{
    top: 50%;
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
    transition: top 0ms ease-in-out 0ms,
                opacity 200ms ease-in-out 0ms,
                transform 20ms ease-in-out 0ms;
}
.signup-popup .close-btn{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
    background: #888;
    color: #eee;
    text-align: center;
    line-height: 15px;
    border-radius: 15px;
    cursor: pointer;
}
.signup-popup .login-form h2{
    text-align: center;
    color: #183153;
    margin: 10px 0px 20px;
    font-size: 25px;
}
.signup-popup .login-form .form-element{
    margin: 15px 0px;
}
.signup-popup .login-form .form-element label{
    font-size: 14px;
    color: #222;
}
.signup-popup .login-form .form-element input[type="text"],
.signup-popup .login-form .form-element input[type="password"]{
    margin-top: 5px;
    display: block;
    width: 100%;
    padding: 10px;
    outline: none;
    border: 1px solid #aaa;
    border-radius: 5px;
}
.signup-popup .login-form .form-element input[type="checkbox"]{
    margin-right: 5px;
}
.signup-popup .login-form .form-element button{
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    font-size: 16px;
    background: #222;
    color: #f5f5f5;
    border-radius: 10px;
    cursor: pointer;
}
.signup-popup .login-form .form-element a{
    display: block;
    text-align: center;
    font-size: 15px;
    color: #146ebe;
    text-decoration: none;
    font-weight:600 ;
}
@media(max-width:900px){
    .signup-popup{
        width: 400px;
        z-index: 100;
    }
}
@media(max-width:418px){
    .signup-popup{
        width: 280px;
        padding: 8px 10px;
        z-index: 100;
    }
    .signup-popup .login-form h2{
        margin: 5px 0px 10px;
        font-size: 15px;
    }
}
@media(max-width:280px){
    .signup-popup{
        width: 220px;
        padding: 8px 10px;
        z-index: 100;
    }
    .signup-popup .login-form h2{
        margin: 5px 0px 10px;
        font-size: 15px;
    }
    .login-form h3{
        font-size: 13px;
    }
    .login-form p{
        display: none;
    }
    .form-element font{
        display: none;
    }
    .signup-popup .login-form .form-element input[type="text"],
    .signup-popup .login-form .form-element input[type="password"]{
    margin-top: 2px;
    line-height: 1px;
    width: 100%;
    padding: 5px;
}
}
/*----------------------------------------------Sign Up End-------------------------------------------------*/

/*----------------------------------------------Donation-------------------------------------------------*/

.cont-sec{
    padding: 8px;
    background-color: #e6edff;
    width: 100%;
}

.cont-sec .contact-cont{
    display: flex;
    flex-wrap: wrap;
}
.cont-sec p{
    margin: 0;
}

.cont-sec p a{
    text-decoration: none;
    color: #303054;
}

.cont-sec .social{
    text-align: right
}

.cont-sec .social a img{
    width: 20px;
    margin-left: 15px;
}

.home-sec{
    /* height: 100vh; */
    padding: 100px 0;
}

.home-sec .home-content {
    align-items: center;
}

.home-sec .home-content h1{
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 20px;

} 
.home-sec .home-content h2 span{
    color: #14e20d;
}

.home-sec .home-content h2{
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}
.home-sec .home-content p{
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.home-sec .img-sec{
    display: flex;
    justify-content: center;
}

.home-sec .img-sec img{
    width: 400px;
    border-radius: 30px;
}

.home-sec .home-content{
    align-items: center;
    padding: 150px 0;
}

/* About section */
.about-sec{
    padding: 150px 0;
    background-color: #e6edff;
}

.about-sec img{
    width: 350px;
    border: 5px solid #303054;
    border-radius: 5px;
}

.about-sec .about-txt p{
    font-size: 18px;
}

/* Donation Section */
.don-sec{
    background-color: #e6edff;
    padding: 150px 0;
}

.don-sec .don-box{
    margin: 50px 0;
    background-color: #fff;
    padding: 50px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 0 15px #b4afaf;
    transition: all 1s;
}

.don-sec .don-box img{
    width: 70px;
    transition: all 1s;
}

.don-sec .don-box h3{
    margin: 15px 0 10px;
}

.don-sec .don-box p{
    margin-bottom: 25px;
}

.don-sec .don-box:hover img{
    transform: scale(1.1);
}

/* Missions */
.mission{
    padding: 150px 0;
}


.gallery-sec{
	position: relative;
	padding: 50px 0;
}

.gallery-sec .image-container{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	padding: 10px;
}

.gallery-sec .image-container .image{
	height: 200px;
	width: 300px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	overflow: hidden;
}

.gallery-sec .image-container .image img{
	height: 100%;
	width: 100%;
	border: 5px solid #d4d4d4;
	object-fit: cover;
	transition: 0.2s linear;
}

.gallery-sec .image-container .image:hover img{
	transform: scale(1.1);
}

.gallery-sec .pop-image{
	position: fixed;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.8);
	height: 100%;
	width: 100%;
	z-index: 100;
	display: none;
}

.gallery-sec .pop-image span{
	position: absolute;
	top: 120px;
	right: 50px;
	font-size: 60px;
	font-weight: bolder;
	color: #ffffff;
	cursor: pointer;
	z-index: 100;
}

.gallery-sec .pop-image img{
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 3px solid #ffffff;
	width: 750px;
	object-fit: cover;
}

/* Conatact Us */
.contact-section {
    padding: 150px 0 80px;
}

.contact-section .contact-form .form-group {
    margin-bottom: 20px;
}

.contact-section .contact-form .form-control {
    height: 50px;
    border-radius: 5px;
}

.contact-section .contact-form textarea.form-control {
    height: 120px;
    margin-bottom: 10px;
}

.contact-section .contact-form .form-control:focus {
    box-shadow: none;
}
/*-------------------------------------------------Media Queries------------------------------*/
@media(max-width: 991px){
    .home-sec .home-content {
        padding: 70px 0;
    }
    .cont-sec p,
    .cont-sec .social {
        text-align: center;
    }
    .home-sec .img-sec img {
        margin-bottom: 50px;
    }   
    .about-sec .about-img {
        display: flex;
        justify-content: center;
    }
    .about-sec .about-img img{
        margin-top: 50px;
    }
    .contact-sec .col-lg-12{
        padding: 0;
    }
    .contact-form textarea.form-control {
        width: 96%;
        margin-left: 15px;
    }
    .gallery-sec .pop-image img {
        top: 60%;
        left: 50%;
        width: 500px;
    }
}
@media(max-width: 611px){
    .about-sec .about-img img{
        width: 300px;
    }
    .contact-section .contact-form textarea.form-control {
        width: 94%;
    }
}
@media(max-width: 551px){

header .navbar-brand{
    font-size: 18px;
}
.gallery-sec .pop-image img {
    top: 50%;
}
.gallery-sec .pop-image img {
    width: 300px;
}
}

/*----------------------------------------------Donation End-------------------------------------------------*/

 
 .products-preview{
    position: fixed;
    top:0; left:0;
    min-height: 100vh;
    width: 100%;
    background: rgba(0,0,0,.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
 }
 
 .products-preview .preview{
    display: none;
    padding:2rem;
    text-align: center;
    background: #fff;
    position: relative;
    margin:1rem;
    width: 30rem;
 }
 
 .products-preview .preview.active{
    display: inline-block;
 }
 
 .products-preview .preview img{
    height: 24rem;
 }
 
 .products-preview .preview .fa-times{
    position: absolute;
    top:1rem; right:1.5rem;
    cursor: pointer;
    color:#444;
    font-size: 2rem;
 }
 

 
 .products-preview .preview h3{
    color:#444;
    padding:.5rem 0;
    font-size: 1.7rem;
 }
 
 .products-preview .preview .price{
    font-size: 2.0rem;
    color:black;
 }
 
 .products-preview .preview .buttons{
    display: flex;
    gap:1.5rem;
    flex-wrap: wrap;
 }
 
 .products-preview .preview .buttons a{
    flex:1 1 16rem;
    font-size: 1.8rem;
    color: #25d366;
    border:.1rem solid  #25d366;
    border-radius: 30px;
    margin-top: 10px;
 }
 

 .products-preview .preview .buttons a.buy:hover{
    background:  #25d366;
    color:#fff;
 }

 .products-preview .preview ul li{
    text-align: left;
    line-height: 25px;
 }
 .products-preview .preview p{
    text-align: left;
    line-height: 30px; 
    font-size: 27px;
    font-family: lucida handwriting;
 }
 /* ----------------------------------------------------media-------------------------------------------------- */

 @media screen and (max-width:1180px){

    .products-preview .preview{
        display: none;
        padding:2rem;
        text-align: center;
        background: #fff;
        position: relative;
        margin:1rem;
        width: 30rem;
     }
     .products-preview .preview img{
        height: 24rem;
     }
    
 }
@media screen and (max-width:717px){
    .products-preview .preview{
        display: none;
        padding:2rem;
        text-align: center;
        background: #fff;
        position: relative;
        margin:1rem;
        width: 14rem;
     }
     .products-preview .preview img{
        height: 7rem;
     }
     .products-preview .preview h3{
        color:#444;
        padding:.5rem 0;
        font-size: 0.9rem;
     }
     .products-preview .preview p{
        text-align: left;
        line-height: 25 px; 
        font-size: 10px;
        font-family:  lucida handwriting;
     }
     .products-preview .preview ul li{
        text-align: left;
        line-height: 10px;
        font-size: 8px;
     }
     .products-preview .preview .buttons a{
        flex:1 1 16rem;
        font-size: 1rem;
        color: #25d366;
        border:.1rem solid  #25d366;
        border-radius: 30px;
        margin-top: 10px;
     }
     .products-preview .preview .price{
        font-size: 1.3rem;
        color:black;
     }
    
    
}


 @media screen and (max-width:280px){
    .products-preview .preview{
        display: none;
        padding:2rem;
        text-align: center;
        background: #fff;
        position: relative;
        margin:1rem;
        width: 19rem;
     }
     .products-preview .preview img{
        height: 9rem;
     }
     .products-preview .preview h3{
        color:#444;
        padding:.5rem 0;
        font-size: 1rem;
     }
     .products-preview .preview p{
        text-align: left;
        line-height: 25 px; 
        font-size: 16px;
        font-family:  lucida handwriting;
     }
     .products-preview .preview .price{
        font-size: 1.7rem;
        color:black;
     }
     .products-preview .preview .buttons a{
        flex:1 1 16rem;
        font-size: 1.3rem;
        color: #25d366;
        border:.1rem solid  #25d366;
        border-radius: 30px;
        margin-top: 10px;
     }
     .products-preview .preview ul li{
        text-align: left;
        line-height: 20px;
        font-size: 12px;
     }
    
 }
 @media screen and (max-width:375px){
    .products-preview .preview{
        display: none;
        padding:2rem;
        text-align: center;
        background: #fff;
        position: relative;
        margin:1rem;
        width: 17rem;
     }
     .products-preview .preview img{
        height: 7rem;
     }
     .products-preview .preview h3{
        color:#444;
        padding:.5rem 0;
        font-size: 1rem;
     }
    .products-preview .preview .price{
       font-size: 1.5rem;
       color:black;
    }
    .products-preview .preview p{
        text-align: left;
        line-height: 25 px; 
        font-size: 16px;
        font-family:  lucida handwriting;
     }
     .products-preview .preview ul li{
        text-align: left;
        line-height: 15px;
        font-size: 11px;
     }
     .products-preview .preview .buttons a{
        flex:1 1 16rem;
        font-size: 1rem;
        color: #25d366;
        border:.1rem solid  #25d366;
        border-radius: 30px;
        margin-top: 10px;
     }
    
 }
 
 @media (max-width:1366px) and (max-height:768px){

    .products-preview .preview{
        display: none;
        padding:2rem;
        text-align: center;
        background: #fff;
        position: relative;
        margin:1rem;
        width: 17rem;
     }
     .products-preview .preview img{
        height: 7rem;
     }
     .products-preview .preview h3{
        color:#444;
        padding:.5rem 0;
        font-size: 1rem;
     }
    .products-preview .preview .price{
       font-size: 1.5rem;
       color:black;
    }
    .products-preview .preview p{
        text-align: left;
        line-height: 25 px; 
        font-size: 16px;
        font-family:  lucida handwriting;
     }
     .products-preview .preview ul li{
        text-align: left;
        line-height: 15px;
        font-size: 11px;
     }
     .products-preview .preview .buttons a{
        flex:1 1 16rem;
        font-size: 1rem;
        color: #25d366;
        border:.1rem solid  #25d366;
        border-radius: 30px;
        margin-top: 10px;
     }
    
 }